home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / ccmd / filelist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-18  |  789 b   |  30 lines

  1. /*
  2.  Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  the City of New York.  Permission is granted to any individual or
  4.  institution to use, copy, or redistribute this software so long as it
  5.  is not sold for profit, provided this copyright notice is retained.
  6.  
  7.  Author: Howie Kaye
  8. */
  9.                     /* files to alloc at a time */
  10. #define FILEINCR 100
  11.                     /* name space to alloc each time */
  12. #define NAMEINCR 1000
  13.  
  14. #ifdef unix
  15. #define DIRSEP "/"
  16. #define STRUCTTERM ""
  17. #endif /*  UNIX */
  18. #ifdef MSDOS
  19. #define DIRSEP "/\\:"
  20. #define STRUCTTERM ":"
  21. #endif /*  MSDOS */
  22. #define WILDCHARS "*?[{"
  23.  
  24. typedef struct _dirfile {
  25.   char *directory;            /* directory file is located in */
  26.   int offset;                /* offset into namebuffer */
  27.   int flags;                /* files flags for this parse */
  28. }  dirfile;
  29.  
  30.